home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ WinNT Plain Password.xpl < prev    next >
Text File  |  2000-11-15  |  1KB  |  43 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Network\Security\Passwords"
  5. "NAME"="Windows NT Plain Password"
  6. "VERSION"="1.00"
  7. "OSVERSION"="01000"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Allow plain text passwords"
  10. "DESCRIPTION 1"="Windows NT does not support plain text passwords by default for security reasons, however, some servers, such as Samba, Unix, or Linux, often require plain text passwords to allow a user to logon to them."
  11. "DESCRIPTION 2"="Enable the first option if you require plain text passwords, but keep in mind this will reduce your password security."
  12. "AUTHOR"="Xteq Systems"
  13. "CONTACTURL"="http://www.xteq.com"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"="More info: http://support.microsoft.com/support/kb/articles/q166/7/30.asp"
  16. "COMMENT 2"="Thanks to CptSiskoX for his help!"
  17.  
  18.  
  19.  
  20. sV1="HKLM\SYSTEM\CurrentControlSet\Services\Rdr\Parameters\EnablePlainTextPassword" 'DW (0=disable, 1=enable)
  21.  
  22. Sub Plugin_Initialize 
  23.   i=RegReadValue(sV1)
  24.   if i=1 then SetUIElement 1,true
  25. End Sub
  26.  
  27. Sub Plugin_CheckData(ElementIndex)
  28. End Sub
  29.  
  30. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  31.  b=GetUIElement(1)
  32.  if b=true then
  33.     Call RegWriteValue(sV1,1,2) 
  34.  else
  35.     If RegValueExists(sV1) then Call RegDeleteValue(sV1)
  36.  end if
  37.  
  38.  Call Restart()
  39. End Sub
  40.  
  41. Sub Plugin_Terminate 
  42. End Sub
  43.